-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathsetup.py
53 lines (45 loc) · 1.55 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
from setuptools import setup
from fabricate import __version__
# see https://github.com/pypa/pypi-legacy/issues/148
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except ImportError:
long_description = open('README.md').read()
setup(
name='fabricate',
version=__version__,
description='The better build tool. Finds dependencies automatically for any language.',
long_description=long_description,
license='New BSD License',
maintainer='Chris Coetzee',
maintainer_email='chriscz93@gmail.com',
url='https://github.com/brushtechnology/fabricate/',
py_modules=['fabricate'],
entry_points={
'console_scripts': [
'fabricate = fabricate:cli',
],
},
extras_require=dict(
build=['twine', 'wheel', 'setuptools-git', 'pypandoc'],
),
keywords='fabricate make python build',
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
platforms=[
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux'
]
)