-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 872 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import exists
from setuptools import setup, find_packages
author = ''
email = ''
description = 'Rainbow.'
name = 'geometry'
year = '2023'
url = ''
version = '0.0.1'
setup(
name=name,
author=author,
author_email=email,
url=url,
version=version,
packages=find_packages(),
package_dir={name: name},
include_package_data=True,
license='None',
description=description,
long_description=open('README.md').read() if exists('README.md') else '',
long_description_content_type="text/markdown",
install_requires=['matplotlib',
'IPython'
],
python_requires=">=3.6",
classifiers=['Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
platforms=['ALL'],
)