-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
38 lines (35 loc) · 1.08 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
35
36
37
38
from setuptools import setup, find_packages
import logging
logger = logging.getLogger(__name__)
name = 'hyperbolic'
package_name = name
version = '2.0.0'
try:
with open('README.md', 'r') as f:
long_desc = f.read()
except:
logger.warning('Could not open README.md. long_description will be set to None.')
long_desc = None
setup(
name = package_name,
packages = find_packages(),
version = version,
description = 'A Python 3 library for constructing and drawing hyperbolic geometry',
long_description = long_desc,
long_description_content_type = 'text/markdown',
author = 'Casey Duckering',
#author_email = '',
url = f'https://github.com/cduck/{name}',
download_url = f'https://github.com/cduck/{name}/archive/{version}.tar.gz',
keywords = ['hyperbolic', 'geometry', 'draw', 'SVG'],
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Framework :: IPython',
'Framework :: Jupyter',
],
install_requires = [
'numpy',
'drawsvg~=2.0',
],
)