-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsetup.py
29 lines (27 loc) · 899 Bytes
/
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
from distutils.core import setup
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='pytago',
version='0.0.12',
packages=['pytago', 'pytago.go_ast'],
url='https://github.com/nottheswimmer/pytago',
license='',
author='Michael Phelps',
author_email='michaelphelps@nottheswimmer.org',
description='Transpiles some Python into human-readable Golang.',
long_description=long_description,
long_description_content_type='text/markdown',
entry_points={
'console_scripts': ['pytago=pytago.cmd:main'],
},
python_requires=">=3.10",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
zip_safe=False,
include_package_data=True,
install_requires=["astroid==2.6.2", "dill==0.3.4"]
)