-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 894 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
import setuptools
with open('README.md', encoding='utf-8') as f:
long_desc = f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setuptools.setup(
version="0.2.0",
name="pytter",
author="zekro",
author_email="contact@zekro.de",
description="Simple twitter API wrapper",
long_description=long_desc,
long_description_content_type="text/markdown",
url="https://github.com/zekrotja/pytter",
download_url='https://github.com/zekrotja/pytter/archive/master.tar.gz',
packages=setuptools.find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Licence 2.0",
"Operating System :: OS Independent",
'Topic :: Software Development :: Libraries',
],
)