-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 726 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 726 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='pyunmarked',
version='0.1.0',
description='A Python module for analyzing ecological data while accounting for imperfect detection',
long_description=readme,
long_description_content_type='text/markdown',
python_requires=">=3.6",
author='Ken Kellner',
author_email='contact@kenkellner.com',
url='https://github.com/kenkellner/pyunmarked',
license=license,
install_requires=[
'numpy', 'pandas', 'scipy', 'patsy', 'prettytable'
],
packages=find_packages(exclude=('tests', 'docs'))
)