-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·48 lines (31 loc) · 921 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
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
"""
Setup script for Python DDD library.
Started by M. Stricker, 2015
install as
python setup.py install --u
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(name='DDDutils',
version='1.0',
description='DDD postprocessing routines in python',
# URL
url = "[email protected]:mastricker/DDDutils.git",
# Author
author='Markus Stricker',
author_email='[email protected]',
license='MIT',
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha'
'License :: OSI Approved :: MIT License'
],
keywords='DDD, KIT, postprocessing',
packages = find_packages(),
)