forked from nccgroup/opinel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (47 loc) · 1.45 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
#!/usr/bin/env python
# distutils/setuptools install script for opinel
import os
from setuptools import setup, find_packages
# Package info
NAME = 'opinel'
ROOT = os.path.dirname(__file__)
VERSION = __import__(NAME).__version__
# Requirements
requirements = []
with open('requirements.txt') as f:
for r in f.readlines():
requirements.append(r.strip())
# Setup
setup(
name=NAME,
version=VERSION,
description='Code shared between Scout2 and AWS-recipes.',
long_description=open('README.rst').read(),
author='l01cd3v',
author_email='l01cd3v@gmail.com',
url='https://github.com/nccgroup/opinel',
packages=[
'opinel', 'opinel.utils', 'opinel.services'
],
package_data={
'opinel': [
'data/*.json',
]
},
include_package_data=True,
install_requires=requirements,
license='GNU General Public License v2 (GPLv2)',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
],
)