-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
executable file
·39 lines (36 loc) · 1.08 KB
/
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
39
#!/usr/bin/env python3.9
import setuptools
with open("README.md", "r") as fp:
long_description = fp.read()
setuptools.setup(
name="SynackAPI",
version="0.0.0",
author="bamhm182",
author_email="bamhm182@gmail.com",
description="A package to interact with Synack's API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bamhm182/synackAPI",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
python_requires=">=3.6",
packages=['synack', 'synack.plugins', 'synack.db'],
package_data={
'synack.db': ['alembic.ini', 'alembic/*', 'alembic/**/*', 'models/*'],
},
package_dir={'': 'src'},
install_requires=[
"alembic==1.8.1",
"netaddr==0.8.0",
"pathlib2==2.3.6",
"psycopg2-binary==2.9.5",
"pyaml==21.10.1",
"pyotp==2.7.0",
"requests==2.28.1",
"SQLAlchemy==1.4.44",
"urllib3==1.26.13",
]
)