-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (31 loc) · 1.05 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
# This should be only one line. If it must be multi-line, indent the second
# line onwards to keep the PKG-INFO file format intact.
"""Self-contained bootstrapping/updating of Python applications deployed
through shared repositories.
"""
from setuptools import setup, find_packages
setup(
name='appenv',
version='0.2.dev0',
author='Christian Theune',
author_email='[email protected]',
license='BSD (3-clause)',
url='https://github.com/flyingcircusio/appenv/',
keywords='deployment',
classifiers="""\
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
"""[:-1].split('\n'),
description=__doc__.strip(),
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=True,
python_requires='>=3.6',
extras_require={'test': {'pytest'}})