-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
51 lines (42 loc) · 1.55 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
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup, find_packages
with open('README.md', encoding = "utf-8") as readme_file:
readme = readme_file.read()
def requirements():
"""Build the requirements list for this project"""
requirements_list = []
with open('requirements.txt', encoding = "utf-8") as requirements:
for install in requirements:
requirements_list.append(install.strip())
return requirements_list
requirements = requirements()
setup(
name='venmo-api',
version='0.3.1',
author="Mark Mohades",
license="GNU General Public License v3",
url='https://github.com/mmohades/venmo',
keywords='Python Venmo API wrapper',
description="Venmo API client for Python",
long_description=readme,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=requirements,
python_requires='>=3.6',
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Natural Language :: English',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)