-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (34 loc) · 1.37 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
from setuptools import setup, find_packages
from dypy import __version__
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="dypy",
packages=find_packages(include=["dypy", "dypy.*"]),
version=__version__,
license="MIT",
description="A toolset for dynamic python code manipulations",
long_description=long_description,
long_description_content_type="text/markdown",
author="Vahid Zehtab, Hamid Kamkari",
author_email="vahid@zehtab.me, hamidrezakamkari@gmail.com",
url="https://github.com/vahidzee/dypy",
keywords=["dynamic coding", "dynamic functions", "lazy evaluation"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Education",
"Programming Language :: Python :: Implementation",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
python_requires=">=3.8",
)