-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·34 lines (31 loc) · 1.13 KB
/
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
30
31
32
33
34
from setuptools import setup, find_packages
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='abstract',
version='2025.2.17.0',
license="Conditional Freedom License (CFL-1.0)",
author='Idin',
author_email='[email protected]',
url='https://github.com/idin/abstract',
keywords='graph',
description='Python library for creating and drawing graphs and taking advantage of graph properties',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: Other/Proprietary License',
'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=['graphviz', 'base32hex', 'colouration'],
python_requires='~=3.6',
zip_safe=True
)