This repository has been archived by the owner on Apr 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (43 loc) · 1.47 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
# -*- 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 distutils.core import setup;
import os;
"""
"""
realpathfile = os.path.realpath(os.path.dirname(__file__));
os.chdir(realpathfile);
f = open("README.md");
long_description = "\n"+f.read();
f.close();
setup(
name="pymfony.framework-standard-edition",
version="0.1.0",
package_dir={'': 'src'},
packages=['acme', 'acme.demo_bundle'],
package_data={'': ["Resources/*/*.*"]},
author="Alexandre Quercia",
author_email="[email protected]",
url="http://github.com/pymfony/pymfony-standard",
description='The "Pymfony Standard Edition" distribution',
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",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Environment :: Console",
"Topic :: Software Development :: Libraries :: Application Frameworks",
],
);