-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 846 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 846 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
from setuptools import setup, find_packages
setup(
name = 'vergeai',
url = "https://master.d23pjv5h2c4648.amplifyapp.com/",
author = "Vale Tolpegin",
author_email = "valetolpegin@gmail.com",
version = "1.0",
maintainer = "Vale Tolpegin",
maintainer_email = "valetolpegin@gmail.com",
packages = find_packages(exclude = ('tests', 'doc')),
install_requires = [
'requests==2.22.0',
'numpy==1.18.0',
'loguru==0.4.1'],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Sphinx',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)