-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.19 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.19 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
from setuptools import find_packages, setup
import os
from ccr import __version__
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
requirements = open(os.path.join(os.path.dirname(__file__),
'requirements.txt')).read()
requires = requirements.strip().split('\n')
setup(
name = 'ccr',
packages = find_packages(),
install_requires=requires,
version = __version__,
author = 'ccr-tools',
# FIXME create a valid ccr-tools support email
author_email = 'rshipp@chakralinux.org',
url = 'http://github.com/ccr-tools/python-ccr/',
description = 'Library for accessing and working with the CCR.',
long_description = open('README.rst').read(),
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPLv2 or any later version",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: System :: Software Distribution",
],
license = 'GPLv2 or any later version',
platforms = ['any'],
test_suite = 'tests'
)