-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 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
from setuptools import setup
import asdoc2dash
def join_files(*files):
content = ""
for name in files:
f = open(name)
content += f.read() + "\n"
f.close()
return content
setup(
name = 'asdoc2dash',
version = asdoc2dash.__version__,
description = asdoc2dash.__doc__.strip(),
long_description = join_files("README.rst", "CHANGES.rst"),
url = asdoc2dash.__homepage__,
license = asdoc2dash.__license__,
author = asdoc2dash.__author__,
author_email = asdoc2dash.__email__,
packages = ["asdoc2dash"],
entry_points = {
"console_scripts": ["asdoc2dash = asdoc2dash.asdoc2dash:main"]
},
install_requires = open("requirements.txt").read().splitlines(),
platforms = 'any',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Topic :: Documentation',
'Topic :: Software Development',
'Topic :: Software Development :: Documentation',
'Topic :: Text Processing'
]
)