-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (31 loc) · 1.08 KB
/
setup.py
File metadata and controls
37 lines (31 loc) · 1.08 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
from setuptools import setup, find_packages
def readme():
with open('./README.md') as f:
return f.read()
setup(
name='pensieve',
version='2022.4.20.1',
license='MIT',
author='Idin',
author_email='py@idin.ca',
url='https://github.com/idin/pensieve',
keywords='graph computation',
description='Python library for organizing objects and dependencies in a graph structure',
long_description=readme(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=find_packages(exclude=("jupyter_tests", ".idea", ".git")),
install_requires=[
'dill', 'toposort', 'disk', 'slytherin', 'chronometry', 'joblib', 'pandas',
'abstract>=2022.4.20'
],
python_requires='~=3.6',
zip_safe=True
)