-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·52 lines (37 loc) · 1.17 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
#!/usr/bin/env python3
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = 1.0
with open('requirements.txt', 'r') as f:
requires = [x.strip() for x in f if x.strip()]
#with open('test-requirements.txt', 'r') as f:
# test_requires = [x.strip() for x in f if x.strip()]
setup(
name = "seloger",
version = version,
description = "Basic SDK to interact with seloger.com API",
long_description = open('README.md').read(),
author = 'nemunaire',
author_email = '[email protected]',
url = 'https://github.com/nemunaire/seloger-notifier',
license = 'AGPLv3',
classifiers = [
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords = 'house seloger',
provides = ['seloger'],
install_requires = requires,
packages=[
'seloger',
],
scripts=[
'bin/seloger-notifier',
],
)