-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·36 lines (32 loc) · 896 Bytes
/
setup.py
File metadata and controls
executable file
·36 lines (32 loc) · 896 Bytes
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
#!/usr/bin/env python
'''
Setup script to create a pip/pypi package via setuptools.
'''
from setuptools import setup, find_packages
with open('requirements-dev.txt') as f:
requirements_dev = f.read().strip().split('\n')
setup(
name='Rocket-R60V',
use_scm_version=True,
license='MIT',
author='confirm IT solutions',
description='Python API for the Rocket R 60V',
long_description=open('README.rst').read(),
url='https://github.com/confirm/Rocket-R60V',
packages=find_packages(exclude=['tests']),
scripts=[
'rocket-r60v',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
setup_requires=[
'setuptools_scm',
],
extras_require={
'develop': requirements_dev
},
)