-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 753 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 753 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
29
30
31
32
33
from setuptools import setup
requires_list = [
"certifi==2019.3.9",
"chardet==3.0.4",
"colorama==0.4.1",
"coverage==4.5.3",
"httpretty==0.9.6",
"idna==2.8",
"rauth==0.7.3",
"requests==2.22.0",
"six==1.12.0",
"urllib3==1.25.2"
]
setup(
name="buffpy",
version="3.1.0",
platforms="any",
description="Python library for Buffer App",
author="Vlad Temian",
author_email="vladtemian@gmail.com",
url="https://github.com/vtemian/buffpy",
packages=["buffpy", "buffpy.managers", "buffpy.models"],
include_package_data=True,
install_requires=requires_list,
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
)