-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 913 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="protosync",
version="0.0.4.9",
author="Edward Liu",
author_email="[email protected]",
description="Sync code with a remote server in real time",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yl573/protosync",
entry_points={
'console_scripts': ['protosync=protosync:main'],
},
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'dill==0.2.7.1',
'pyrsync2==0.2.6',
'requests==2.20.0',
'cryptography==2.4.2',
'gitignore-parser==0.0.3',
'attrdict==2.0.0'
]
)