-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (25 loc) · 861 Bytes
/
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
from setuptools import setup, find_packages
from os import path
with open('README.md') as readme_file:
readme = readme_file.read()
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'requirements.txt')) as f:
requirements = f.read().split()
setup(
name="subsea",
version="0.1.0",
author="Simon Ball",
author_email="[email protected]",
description="Server/client for queuing jobs onto a calculation server",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/simon-ball/SubSeaPro",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPLv3",
"Operating System :: OS Independent",
],
install_requires=requirements,
include_package_data=True,
packages=find_packages(include=['subsea*']),
)