Skip to content

Commit b18e146

Browse files
committed
setup files added
1 parent e2902f1 commit b18e146

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
#!/usr/bin/env python
2+
import os
3+
4+
from setuptools import setup
5+
6+
ROOT_DIR = os.path.dirname(__file__)
7+
SOURCE_DIR = os.path.join(ROOT_DIR)
8+
9+
requirements = [
10+
'requests >= 2.5.2, <= 2.11.1',
11+
]
12+
13+
version = None
14+
exec(open('devmateclient/version.py').read())
15+
16+
with open('./test_requirements.txt') as test_reqs_txt:
17+
test_requirements = [line for line in test_reqs_txt]
18+
19+
setup(
20+
name='devmateclient',
21+
version=version,
22+
description='Simple DevMate Public API client',
23+
url='https://github.com/DevMate/DevMateClientPython',
24+
author='Pavel Akimenko',
25+
author_email='[email protected]',
26+
license='MIT',
27+
packages=[
28+
'devmateclient',
29+
'devmateclient.api'
30+
],
31+
install_requires=requirements,
32+
tests_require=test_requirements,
33+
test_suite='tests',
34+
keywords=['devmate', 'api', 'client'],
35+
classifiers=[
36+
'Development Status :: 4 - Beta',
37+
'Environment :: Other Environment',
38+
'Intended Audience :: Developers',
39+
'Operating System :: OS Independent',
40+
'Programming Language :: Python',
41+
'Programming Language :: Python :: 2',
42+
'Programming Language :: Python :: 2.7',
43+
'Programming Language :: Python :: 3',
44+
'Programming Language :: Python :: 3.3',
45+
'Programming Language :: Python :: 3.4',
46+
'Programming Language :: Python :: 3.5',
47+
'Topic :: Software Development',
48+
'Topic :: Software Development :: Libraries :: Python Modules',
49+
'Topic :: Utilities',
50+
'License :: OSI Approved :: MIT License',
51+
],
52+
)

0 commit comments

Comments
 (0)