-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 862 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 862 Bytes
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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(name = 'pyCE',
version = '0.0.1',
description = 'A python library for Configurational Entropy projects',
long_description = readme(),
url = 'https://github.com/EternalTime/pyCE',
author = 'Damian R Sowinski',
author_email = 'damian.sowinski@dartmouth.edu',
classifiers = [
'Development Status :: Pre-use',
'Intended Audience :: Physicists',
'Topic :: Field Theory :: Cosmology :: Information Theory',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
license = 'MIT',
packages = find_packages(),
install_requires=[
'tqdm',
],
include_package_data=True,
zip_safe=False)