-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
45 lines (39 loc) · 1.42 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
from setuptools import setup
descr = """LLC tools: prettier LowLevelCallables with SciPy and Numba."""
DISTNAME = 'llc-tools'
DESCRIPTION = 'Prettier LowLevelCallables'
LONG_DESCRIPTION = descr
MAINTAINER = 'Juan Nunez-Iglesias'
MAINTAINER_EMAIL = '[email protected]'
URL = 'https://github.com/jni/llc-tools'
LICENSE = 'BSD 3-clause'
DOWNLOAD_URL = 'https://github.com/jni/llc-tools'
VERSION = '0.3.0'
PYTHON_VERSION = (3, 6)
INST_DEPENDENCIES = []
if __name__ == '__main__':
setup(name=DISTNAME,
version=VERSION,
url=URL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
license=LICENSE,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
],
packages=['llc'],
package_data={},
install_requires=INST_DEPENDENCIES,
)