forked from pcah/python-clean-architecture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·51 lines (45 loc) · 1.43 KB
/
setup.py
File metadata and controls
executable file
·51 lines (45 loc) · 1.43 KB
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
45
46
47
48
49
50
51
#!/usr/bin/env python3
from setuptools import (
setup,
find_packages,
)
import devops
import pca
def readme():
with open('README.md') as f:
return f.read()
if __name__ == '__main__':
devops.PROJECT_PACKAGE = pca
setup(
name=pca.PROJECT_NAME,
version=pca.VERSION.as_string(),
url=f'https://github.com/pcah/{pca.PROJECT_NAME}',
license='MIT License',
author='lhaze',
author_email='lhaze@lhaze.name',
description='A Python toolkit for applications driven by the Clean Architecture',
long_description_content_type='text/markdown',
long_description=readme(),
platforms='any',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Intended Audience :: Developers",
"Development Status :: 2 - Pre-Alpha"
],
cmdclass=devops.commands.ALL,
install_requires=[
"dataclasses; python_version < '3.7'",
"gitpython",
'twine',
'virtualenv',
'wheel',
],
tests_require=['tox'],
packages=find_packages(),
)