File: setup.py

package info (click to toggle)
ctdopts 1.5-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 228 kB
  • sloc: python: 938; makefile: 11; sh: 6
file content (13 lines) | stat: -rw-r--r-- 400 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
from distutils.core import setup

setup(
    name='CTDopts',
    version='1.5',
    packages=['CTDopts'],
    url='https://github.com/genericworkflownodes/CTDopts',
    license='',
    author='Andras Szolek',
    author_email='',
    py_modules=['CTDopts/CTDopts'],
    description='A module for enabling tools with CTD reading/writing, argument parsing, validating and manipulating capabilities.'
)