-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 885 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 885 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.md', 'r') as f:
long_description = f.read()
with open('requirements.txt', 'r') as f:
install_requires = f.readlines()
setup(
name='python-thenewsapi',
packages=['thenewsapi'],
version='0.1.1',
description='A python wrapper for thenewsapi.com',
author='Brighton Sanders',
url='https://github.com/sandersb725/python-thenewsapi',
long_description=long_description,
long_description_content_type="text/markdown",
author_email='bus120610@gmail.com',
install_requires=install_requires,
classifiers = [
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3'
],
)