-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (46 loc) · 1.24 KB
/
setup.py
File metadata and controls
48 lines (46 loc) · 1.24 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="cc",
version="0.1",
author="Zach Hafen",
author_email="zachary.h.hafen@gmail.com",
description="Publication analysis software.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/zhafen/cc",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'bibtexparser>=1.2.0',
'tqdm>=4.46.0',
'palettable>=3.3.0',
'numba>=0.51.2',
'plotly>=4.11.0',
'nltk>=3.5',
'matplotlib>=3.2.2',
'ads>=0.12.3',
'numpy>=1.19.1',
'pytest>=6.0.1',
'scipy>=1.5.0',
'simple-augment>=1.0',
'mock>=4.0.2',
'pandas>=1.1.4',
'verdict>=1.2',
'h5py>=3.6.0',
'descartes>=1.1.0',
'scikit_learn>=1.0.2',
'Shapely>=1.8.1.post1',
],
ext_modules = [
setuptools.Extension(
'cartography',
[ './cc/backend/cartography.cpp' ],
),
],
)