-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (30 loc) · 968 Bytes
/
setup.py
File metadata and controls
37 lines (30 loc) · 968 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
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
readme = '\n'.join(open('README.md').readlines())
setuptools.setup(
name='dsr',
version='1.0.4',
# Project description
description='Automatically gegerate repr to show data structures espelly trees',
long_description=readme,
long_description_content_type="text/markdown",
# Author details
author='Charles Xu',
author_email='charl3s.xu@gmail.com',
# Project details
url='https://github.com/the0demiurge/DataStructureRepr',
# Project dependencies
classifiers=[
"Programming Language :: Python",
"License :: Other/Proprietary License",
"Operating System :: Android",
"Operating System :: iOS",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: Other OS",
"Operating System :: POSIX",
"Operating System :: Unix",
],
packages=["dsr"],
)