-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (34 loc) · 1.29 KB
/
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
40
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__),
"alpaca", "VERSION")) as version_file:
version = version_file.read().strip()
with open("README.md") as f:
long_description = f.read()
with open('requirements/requirements.txt') as fp:
install_requires = fp.read()
setup(
name="alpaca-prov",
version=version,
packages=['alpaca', 'alpaca.utils', 'alpaca.serialization',
'alpaca.ontology', 'alpaca.code_analysis'],
include_package_data=True,
install_requires=install_requires,
author="Alpaca authors and contributors",
author_email="",
description="Alpaca is a Python package for the capture of provenance "
"information during the execution of Python scripts that "
"process data.",
long_description=long_description,
long_description_content_type="text/markdown",
license="BSD",
url='https://github.com/INM-6/alpaca',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering']
)