-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·43 lines (36 loc) · 1.09 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
# -*- coding: utf-8 -*-
# Learn more: https://github.com/kennethreitz/setup.py
from setuptools import find_packages
from setuptools import setup
REQUIRED = []
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
with open('requirements.txt') as f:
while True:
line = f.readline()
if not line:
break
REQUIRED.append(line.strip())
setup(
name='rapticoressvc',
description='Rapticore SSVC ORE Miner',
classifiers=[
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
long_description_content_type="text/markdown",
long_description=readme,
author='Rapticore, Inc',
author_email='[email protected]',
url='',
license=license,
install_requires=REQUIRED,
packages=find_packages(exclude=('tests', 'docs')),
include_package_data=True,
package_data={
"rapticoressvc": ["ssvc_impact_options.csv", "priority-options_v2.csv", "ssvc_utility_options.csv"],
},
)