-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
39 lines (28 loc) · 897 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
"""
Installation script for mapalign
"""
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
with open(path.join(here, 'requirements.txt')) as f:
requirements = [val.strip() for val in f.readlines()]
setup(
name='mapalign',
python_requires='>=3.6',
version='0.3.0',
description='Mapalign',
long_description=long_description,
# The project's main homepage.
url='https://github.com/satra/mapalign',
# Author details
author='satra',
# Choose your license
license='Apache License, 2.0',
provides=['mapalign'],
packages=find_packages(),
py_modules=["align", "dist", "embed"],
install_requires=requirements[:-1],
tests_require=requirements[-1:]
)