-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (30 loc) · 1.08 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
import sys
from setuptools import setup, find_packages
with open('requirements.txt') as f:
INSTALL_REQUIRES = [x.strip() for x in f.readlines()]
with open('requirements-dev.txt') as f:
TEST_REQUIRES = [x.strip() for x in f.readlines()]
with open('README.md') as f:
readme = f.read()
setup(
name="powerprofile",
version="0.23.1",
author="GISCE-TI, S.L.",
author_email="devel@gisce.net",
description=("Library to manage power profiles"),
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/gisce/powerprofile",
license="GNU Affero General Public License v3",
install_requires=INSTALL_REQUIRES,
setup_requires=["pytest-runner"],
tests_require=TEST_REQUIRES,
packages=find_packages(exclude=('tests', 'docs', 'examples')),
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.11",
"Topic :: Utilities"
],
)