forked from crateio/carrier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (29 loc) · 790 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
35
36
37
38
#!/usr/bin/env python
from setuptools import setup, find_packages
import carrier
install_requires = [
"APScheduler",
"forklift",
"redis",
"six",
"xmlrpc2",
]
setup(
name="carrier",
version=carrier.__version__,
description="Warehouse and PyPI Synchronization",
long_description=open("README.rst").read(),
url="https://github.com/crateio/carrier/",
license=open("LICENSE").read(),
author="Donald Stufft",
author_email="[email protected]",
install_requires=install_requires,
packages=find_packages(exclude=["tests"]),
package_data={"": ["LICENSE"], "carrier": ["config/*.crt"]},
zip_safe=False,
entry_points={
"console_scripts": [
"carrier = carrier.__main__:main",
],
},
)