-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
29 lines (26 loc) · 903 Bytes
/
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
from setuptools import setup
from tbert import __version__, __description__, __url__, __author__, \
__author_email__, __keywords__
NAME = 'tbert'
setup(
name=NAME,
version=__version__,
description=__description__,
long_description='See ' + __url__,
url=__url__,
author=__author__,
author_email=__author_email__,
keywords=__keywords__,
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=[NAME],
install_requires=[], # do not drag in any deps, to ease re-use
)