-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·33 lines (30 loc) · 997 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
29
30
31
32
33
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from dacets import (__title__, __version__, __author__, __license__)
setup(
name=__title__,
version=__version__,
author=__author__,
author_email='[email protected]',
packages=['dacets', 'dacets.tests'],
scripts=['bin/dct'],
url='http://dacets.net/',
license=__license__,
description='facets of (research) datasets',
long_description=open('README.md').read(),
keywords = ['scientific data management', 'electronic data capture'],
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Topic :: Science/Research :: Data Management',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
],
install_requires=[
'docopt >= 0.6.1',
'Sphinx >= 1.1.3',
'PyYAML >= 3.10',
],
)