-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (59 loc) · 1.94 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import importlib
from setuptools import (
setup, find_packages
)
version = importlib.import_module('adoc.version').version
with open('requirements.txt') as fh:
requirements = fh.read() \
.split()
with open('requirements-pdf.txt') as fh:
requirements_pdf = fh.read() \
.split()
setup(
name='adoc',
version=version,
license='BSD',
author='Benoit Myard',
author_email='[email protected]',
url='https://github.com/saalaa/adoc',
project_urls={
'Documentation': 'https://saalaa.github.io/adoc',
'Issues': 'https://github.com/saalaa/adoc/issues'
},
description='Python code documentation generator',
long_description='See https://github.com/saalaa/adoc',
python_requires='~=3.5',
install_requires=requirements,
extras_require={
'pdf': requirements_pdf
},
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: OS Independent',
'Operating System :: POSIX :: BSD',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content'
],
entry_points={
'console_scripts': [
'adoc = adoc.cli:main'
]
}
)