forked from pruthvz/PyAPIReference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (42 loc) · 1.51 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup, find_packages
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Environment :: X11 Applications :: Qt"
]
with open("README.md", "r") as file:
long_description = file.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
github_url = "https://github.com/Patitotective/PyAPIReference"
setup(
name="PyAPIReference",
version="0.1.50",
author="Cristobal Riaga",
author_email="[email protected]",
maintainer="Cristobal Riaga",
maintainer_email="[email protected]",
url=github_url,
project_urls={
"Website": "https://patitotective.github.io/PyAPIReference/",
'Source code': github_url,
'Changelog': f'{github_url}/blob/main/CHANGELOG.md',
'Issues': f'{github_url}/issues',
'Pull requests': f'{github_url}/pulls',
'Discord server': "https://discord.gg/as85Q4GnR6"
},
description="Generate API references for Python modules.",
long_description=open("README.md").read(),
classifiers=classifiers,
platforms= ["Windows", "Linux"],
keywords=["api reference", "api", "api-reference", "app", "application", "qt", "pyqt"],
license="MIT",
packages=find_packages(),
install_requires=requirements,
long_description_content_type="text/markdown"
)