-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
40 lines (37 loc) · 1.37 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
40
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
# The README.md will be used as the content for the PyPi package details page on the Python Package Index.
with open('README.md', 'r') as readme:
long_description = readme.read()
setup(
name='polyswarm-api',
version='3.11.0',
description='Client library to simplify interacting with the PolySwarm consumer API',
long_description=long_description,
long_description_content_type='text/markdown',
author='PolySwarm Developers',
author_email='info@polyswarm.io',
url='https://github.com/polyswarm/polyswarm-api',
license='MIT',
python_requires='>=3.7,<4',
install_requires=[
'requests~=2.31',
'python-dateutil~=2.9',
],
include_package_data=True,
packages=find_packages('src'),
package_dir={'': 'src'},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: PyPy',
]
)