forked from david-hoffman/peaks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (38 loc) · 1.18 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
44
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# setup.py
"""
Setup files.
Copyright (c) 2020, David Hoffman
"""
import setuptools
import versioneer
# read in long description
with open("README.md", "r") as fh:
long_description = fh.read()
# get requirements
with open("requirements.txt", "r") as fh:
requirements = [line.strip() for line in fh]
setuptools.setup(
name="peaks",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="David Hoffman",
author_email="[email protected]",
url="https://github.com/david-hoffman/peaks",
description="Package for finding and analyzing puncta in optical images.",
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache V2.0",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
],
python_requires=">=3.8",
install_requires=requirements,
)