-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
64 lines (57 loc) · 1.93 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python3
""" This is the setup.py script for setting up the package and fulfilling any
necessary requirements.
"""
from setuptools import setup, find_packages
from codecs import open # To use a consistent encoding
from os import path
# Set the home path of the setup script/package
home = path.abspath(path.dirname(__file__))
name = 'labrat'
def readme():
"""Get the long description from the README file."""
with open(path.join(home, 'README.md'), encoding='utf-8') as f:
return f.read()
setup(
name=name,
author='Shaurita Hutchins',
author_email='sdhutchins@outlook.com',
description="A package of helpful guis and functions to improve reproducibility for genetics/psychiatry related labs.",
version='0.2',
long_description=readme(),
url='https://github.com/sdhutchins/labrat',
license='MIT',
keywords='science lab pyschiatry math filemanagement',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
project_urls={
'Documentation': '',
'Releases': 'https://github.com/sdhutchins/labrat/releases',
'Issues': 'https://github.com/sdhutchins/labrat/issues',
},
# Packages will be automatically found if not in this list.
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'labrat=labrat.cli:main'
]
},
install_requires=[
'cookiecutter>=1.5.1',
'logzero>=1.3.1',
'exmemo>=0.1.0',
'click>=6.7'
],
zip_safe=False,
tests_require=['pytest']
)