-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (48 loc) · 1.88 KB
/
setup.py
File metadata and controls
55 lines (48 loc) · 1.88 KB
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
52
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('CHANGELOG.rst') as changelog_file:
changelog = changelog_file.read()
with open('requirements.txt') as requirements_file:
requirements = requirements_file.read().splitlines()
with open('testing_requirements.txt') as test_requirements_file:
test_requirements = test_requirements_file.read().splitlines()
setup(
name='GroupyAPI',
version='0.10.3',
description='The simple yet powerful wrapper for the GroupMe API',
long_description=readme + '\n\n' + changelog,
author='Robert Grant',
author_email='rhgrant10@gmail.com',
url='https://github.com/rhgrant10/Groupy',
packages=find_packages(),
package_dir={'groupy': 'groupy'},
include_package_data=True,
install_requires=requirements,
license="Apache Software License, Version 2.0",
keywords=['api', 'GroupMe'],
classifiers=[
# 'Development Status :: 1 - Planning',
# 'Development Status :: 2 - Pre-Alpha',
# 'Development Status :: 3 - Alpha',
# 'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
# 'Development Status :: 6 - Mature',
# 'Development Status :: 7 - Inactive',
'Operating System :: OS Independent',
'Topic :: Communications :: Chat',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
test_suite='tests',
tests_require=test_requirements
)