-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 806 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 806 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
25
26
27
28
from setuptools import setup
with open('requirements.txt', 'r') as f:
install_requires = [l.strip() for l in f.readlines()]
setup(
name='sling',
version='0.1.1',
url='https://github.com/slinghq/sling',
license='Apache',
author='SlingHQ',
author_email='support@slinghq.com',
install_requires=install_requires,
packages=['sling', 'sling.core', 'sling.ext'],
platforms='any',
include_package_data=True,
zip_safe=False,
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Environment :: Web Environment',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)