forked from pennmem/cmlreaders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (24 loc) · 787 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from cmlreaders import __version__
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('CHANGELOG.rst') as history_file:
history = history_file.read()
requirements = []
setup_requirements = []
setup(
name='cmlreaders',
version=__version__,
description="Collection of utility classes for reading CML-specific data files",
long_description=readme + '\n\n' + history,
author="Penn Computational Memory Lab",
url='https://github.com/pennmem/cmlreaders',
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
zip_safe=False,
keywords='cmlreaders',
setup_requires=setup_requirements,
)