forked from alecraso/grnhse-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (50 loc) · 1.57 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
52
53
54
55
56
import re
from io import open
from setuptools import setup, find_packages
README = 'README.md'
CHANGES = 'CHANGES.md'
VERSION_FILE = 'grnhse/__init__.py'
def read(path):
with open(path, encoding='utf-8') as f:
return f.read()
setup(
name='grnhse-api',
version='1.0',
author='Aaron Biller',
author_email='aaronbiller@gmail.com',
description='Python wrapper for the Greenhouse APIs',
long_description=read(README) + '\n' + read(CHANGES),
long_description_content_type='text/markdown',
license='MIT',
url='https://github.com/aaronbiller/grnhse-api',
packages=find_packages(),
tests_require=[
'pytest',
'pytest-cov',
'mock',
],
install_requires=[
'requests~=2.20,>=2.20.1',
'pytest-runner==4.2',
],
include_package_data=True,
scripts=[],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
)