-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (34 loc) · 1020 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
#from distutils.core import setup
from setuptools import setup
from distutils.extension import Extension
import sys
# fix problems with pythons terrible import system
import os
file_dir = os.path.dirname(os.path.realpath(__file__))
SRC_DIR = 'msaplot'
import msaplot
version = msaplot.__version__
AUTHOR = 'Li Song'
EMAIL = 'mourisl@hotmail.coom'
URL = 'https://github.com/mourisl/msaplot'
DESCRIPTION = 'https://github.com/mourisl/msaplot'
PACKAGES = [SRC_DIR,
]
setup(name='msaplot',
version=version,
description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
url=URL,
packages=PACKAGES,
license='MIT',
install_requires=["seaborn", "matplotlib", "pandas"],
package_data={
},
entry_points={
},
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
keywords= ['Data Visualization'],
classifiers=[ "Programming Language :: Python :: 3"],
)