-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 815 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (22 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
version = open('config/VERSION').read().strip()
requirements = open('config/requirements.txt').read().split("\n")
setup(
name='twentyc.tools',
version=version,
author='Twentieth Century',
author_email='code@20c.com',
description='various python tool libraries / helpers',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries :: Python Modules',
],
url='https://github.com/20c/twentyc.tools',
download_url='https://github.com/20c/twentyc.tools/tarball/%s'%version,
packages=['twentyc.tools'],
install_requires=requirements,
namespace_packages=['twentyc'],
zip_safe=False
)