-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·39 lines (36 loc) · 1001 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
34
35
36
37
38
39
import codecs
import os
from setuptools import setup, find_packages
import sys
# Shortcut for building/publishing to Pypi
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist bdist_wheel upload')
sys.exit()
setup(
name="ped_parser",
version="1.6.5",
description="A ped file parser.",
author="Mans Magnusson",
author_email="[email protected]",
url='https://github.com/moonso/ped_parser',
license='MIT License',
install_requires=[
'pytest',
'click'
],
packages=[
'ped_parser'
],
scripts=[
'scripts/ped_parser'
],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Intended Audience :: Science/Research",
],
long_description = "Parse pedigree files in different formats",
)