-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 735 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (21 loc) · 735 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
from setuptools import setup, find_packages
from os import path
HERE = path.abspath(path.dirname(__file__))
with open(path.join(HERE, 'README.rst')) as fin:
long_description = fin.read()
setup(
name='prettytype',
version='0.2.0',
description='Print types of nested structues',
long_description=long_description,
url='https://github.com/stuglaser/prettytype',
author='Stu Glaser',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
packages=find_packages(exclude=['contrib', 'docs', 'test*']),
)