-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (29 loc) · 969 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
36
#!/usr/bin/env python3.8
from setuptools import setup, find_packages
install_requires = [
"pytypes"
]
description = "Simply calls pytypes.enable_global_typechecked_profiler() when 'PYTYPES' env var is set."
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="pytypes-env",
version="0.0.3",
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
author="Mathew Moon",
author_email="[email protected]",
# Choose your license
python_requires=">=3.8",
url="https://github.com/mathewmoon/pytypes-env",
license="Apache 2.0",
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.8',
],
packages=find_packages()
)