-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (31 loc) · 1009 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
from setuptools import find_packages, setup
requirements = [
'requests==2.25.1',
'requests-toolbelt==0.9.1',
'PySocks==1.7.1',
'pydantic==1.7.4',
'beautifulsoup4==4.9.3'
]
setup(
name='ecent-api',
version='0.1.1',
author='xHossein',
license='MIT',
url='https://github.com/xHossein/ecent-api',
install_requires=requirements,
keywords='ecent api',
description='Ecent API [ https://ecent2.guilan.ac.ir ]',
packages=find_packages(),
python_requires=">=3.6",
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
)