-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 878 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
from setuptools import setup, find_packages
package_name = "SpotSegmentation"
def read_requirements():
with open('requirements.txt', 'r') as file:
return [line.strip() for line in file.readlines()]
setup(
name=package_name,
version='{{VERSION_PLACEHOLDER}}',
packages=find_packages(),
install_requires=read_requirements(),
author="Matthias Kellner",
include_package_data=True,
author_email="matthias.kellner@ccri.at",
description="",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/TaschnerMandlGroup/SpotSegmentation",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
)