-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·37 lines (31 loc) · 1.04 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
#! /usr/bin/python
"""Setuptools-based setup script for datreant.data.
For a basic installation just type the command::
python setup.py install
"""
from setuptools import setup, find_packages
print(find_packages())
setup(
name="datreant_cli",
version="0.7.0-dev",
description="convenient CLI interface for Treant directories",
author="Max Linke",
author_email="[email protected]",
url="http://datreant.org/",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages(),
scripts=[],
license="BSD",
long_description=open("README.rst").read(),
install_requires=["datreant", "six", "click"],
entry_points={"console_scripts": ["dtr=datreant_cli.cli:cli"]},
)