forked from ChrisBeaumont/oni
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 749 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (28 loc) · 749 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
from setuptools import find_packages, setup
NAME = 'oni'
VERSION = '0.1'
DESCRIPTION = """Calculator to balance machine resources in Oxygen Not Included"""
AUTHOR = 'Chris Beaumont'
EMAIL = 'chrisnbeaumont@gmail.com'
REQUIRED = [
"pandas",
"scipy",
"PyYaml"
]
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
packages=find_packages(exclude=['tests', '__pycache__']),
install_requires=REQUIRED,
include_package_data=True,
license="MIT",
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)