-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
42 lines (35 loc) · 1.15 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
from distutils.core import setup
exec(compile(open('release.py').read(), 'release.py', 'exec'))
try:
from sphinx.setup_command import BuildDoc
cmd_class ={'build_sphinx': BuildDoc}
except ImportError:
cmd_class = {}
from release import *
packages = ['AppOpener']
setup(name=name,
version = version,
description = description,
long_description_content_type="text/markdown",
long_description = long_description,
author = authors["Athrv"][0],
author_email = authors["Athrv"][1],
maintainer = authors["athrvvvv"][0],
maintainer_email = authors["athrvvvv"][1],
license = license,
classifiers = classifiers,
url = url,
download_url = download_url,
project_urls={
'Documentation': Documentation,
'Source': Source,
'Tracker': Tracker,
},
platforms = platforms,
keywords = keywords,
py_modules = ['AppOpener'],
packages = packages,
include_package_data=True,
install_requires=install_requires,
cmdclass = cmd_class
)