-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (38 loc) · 1.44 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='aktorz',
version='0.2.0-rc2',
description='Learning pydantic with a simple actors json file.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/jcejohnson/aktorz',
author='James Johnson',
author_email='[email protected]',
classifiers=[
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
# "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
keywords='json, jsonref',
package_dir={'': 'src'},
packages=find_packages(where='src'), # Required
install_requires=(here / 'requirements.txt').read_text(encoding='utf-8').split('\n'),
entry_points={ # Optional
'console_scripts': [
'aktorz=aktorz.cli:main'
],
},
)