-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·34 lines (29 loc) · 959 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
30
31
32
33
34
#!./venv/bin/python3
'''
Created on 20190821
Update on 20220922
@author: Eduardo Pagotto
'''
from setuptools import setup, find_packages
from Zero.common import __version__ as VERSION
PACKAGE = "Zero"
# listar os packages
#python -c "from setuptools import setup, find_packages; print(find_packages())"
setup(
name="Zero",
version=VERSION,
author="Eduardo Pagotto",
author_email="edupagotto@gmail.com",
description="RPC em UnixDomainProtocol",
long_description="RPC em UnixDomainProtocol e outras rotinas de IPC",#long_description,
long_description_content_type="text/markdown",
url="https://github.com/EduardoPagotto/Zero.git",
packages=find_packages(),
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
install_requires=['typed-ast','typing-extensions', 'wheel', 'tinydb'],
)