forked from ajspakow/wlcstat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (54 loc) · 1.47 KB
/
setup.py
File metadata and controls
58 lines (54 loc) · 1.47 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup, find_packages
import numpy as np
# Package metadata
NAME = 'wlcstat'
VERSION = '0.1.0'
AUTHOR = 'Andrew Spakowitz'
AUTHOR_EMAIL = 'ajspakow@stanford.edu'
DESCRIPTION = 'WLC Statistics Package'
URL = 'https://github.com/ajspakow/wlcstat.git'
KEYWORDS = 'thermodynamics, epigenetics, nucleosomes, euchromatin, polymer'
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science Research',
'Programming Language :: Python :: 3.9',
]
# Package dependencies
INSTALL_REQUIRES = [
"matplotlib~=3.5.2",
"numba~=0.57.1",
"numpy~=1.21.6",
"pandas~=1.3.5",
"pathos~=0.3.1",
"rotations~=0.0.2",
"scipy~=1.11.1",
"setuptools~=68.0.0",
"sympy~=1.4"
]
# Read the long description from README.md
with open('README.md', 'r', encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
# Setup configuration
setup(
name=NAME,
version=VERSION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url=URL,
keywords=KEYWORDS,
classifiers=CLASSIFIERS,
packages=find_packages(
include=[
"wlcstat", "wlcstat.util", "wlcstat.util.mittag_leffler_master"
]
),
include_package_data=True,
include_dirs=[
np.get_include(), "wlcstat", "wlcstat/util",
"wlcstat/util/mittag_leffler_master"
],
install_requires=INSTALL_REQUIRES,
)