-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (36 loc) · 1.37 KB
/
setup.py
File metadata and controls
42 lines (36 loc) · 1.37 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
38
39
40
41
42
"""
Geometrify package setup file.
This file imports the necessary setup function from setuptools module, reads
the content of Readme.rst file and passes it as long description,
and defines package name, version, description, author, author email, url, packages,
package data, keywords, classifiers, and requirements.
For more information about the package, please visit https://github.com/1abhi6/Geometrify.
"""
from setuptools import setup
import setuptools
with open("Readme.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
SHORT_DESCRIPTION = """Geometrify is a Python package for easy creation, manipulation,
and analysis of 2D geometries.
"""
setup(
name="Geometrify",
version="1.0.5",
description=SHORT_DESCRIPTION,
author="Abhishek Santosh Gupta",
author_email="abhi@getifyme.com",
url="https://github.com/1abhi6/Geometrify",
long_description=long_description,
packages=setuptools.find_packages(),
include_package_data=True,
license="MIT",
keywords=["2D geometry", "Coordinate geometry", "Coordinate datatype"],
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=[],
)