-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 743 Bytes
/
setup.py
File metadata and controls
27 lines (22 loc) · 743 Bytes
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
from setuptools import find_packages, setup
import sys
install_requires = ['uuid']
if sys.version_info < (3, 5):
install_requires.append('typing')
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='ecstremity',
version='1.1.0',
author='Jonathan Crum',
author_email="crumja4@gmail.com",
url="https://github.com/krummja/ECStremity",
license='MIT',
description='An ECS Library based on the JavaScript geotic library.',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=install_requires,
packages=find_packages(include=['ecstremity']),
test_suite='tests',
python_requires='>=3.8.5',
)