-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (29 loc) · 1007 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
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
version = '0.1.6'
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'trict',
packages = ['trict'],
version = version,
license='MIT',
description = 'UserDict subclass with extra stuff',
long_description=long_description,
long_description_content_type='text/markdown',
author = 'Saska Karsi',
author_email = '[email protected]',
url = 'https://github.com/saska/trict',
keywords = ['mapping', 'map', 'dictionary', 'recursive', 'dict'],
install_requires=[],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)