-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 687 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 687 Bytes
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
import setuptools
setuptools.setup(
name="geekie-sms",
version="1.0",
url="http://www.geekie.com.br",
maintainer="Geekie",
maintainer_email="[email protected]",
packages=["geekie"],
namespace_packages=["geekie"],
include_package_data=True,
zip_safe=False,
setup_requires=["setuptools_git==1.0b1"],
install_requires=[
"pyramid==1.4.2",
"pyramid_debugtoolbar==1.0.6",
"PasteDeploy==1.5.0",
"pyramid_tm==0.7",
"requests==2.1.0",
"setuptools-git==1.0b1",
"waitress==0.8.5",
"twilio",
],
entry_points={
"paste.app_factory": "main = geekie.sms.main:main",
}
)