-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (52 loc) · 1.63 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/python
# -*- coding: utf-8 -*-
# This file is part of the pymfony package.
#
# (c) Alexandre Quercia <[email protected]>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
from __future__ import absolute_import;
import os;
from distutils.core import setup;
"""
"""
realpathfile = os.path.realpath(os.path.dirname(__file__));
os.chdir(realpathfile);
f = open("README.md");
long_description = "\n"+f.read();
f.close();
def find_packages():
return [
'pymfony.component.kernel',
];
def find_package_data():
return {
};
setup(
name="pymfony.kernel",
version="0.1.0",
package_dir={'pymfony.component.kernel': ''},
packages=find_packages(),
package_data=find_package_data(),
author="Alexandre Quercia",
author_email="[email protected]",
url="http://github.com/pymfony/kernel",
description='Pymfony Kernel Component',
long_description=long_description,
license="MIT",
classifiers=[
"Development Status :: 1 - Planning",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Application Frameworks",
],
);