This repository was archived by the owner on Aug 6, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·46 lines (43 loc) · 1.35 KB
/
setup.py
File metadata and controls
executable file
·46 lines (43 loc) · 1.35 KB
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
# -*- coding: utf-8 -*-
import os
from distutils.core import setup
#, find_packages
from version import get_git_version
def read(filename):
f = os.path.join(os.path.dirname(__file__), filename)
if os.path.exists(f):
return open(f).read()
setup(name='awsite',
version = get_git_version(),
# version='1.0a',
description='Tools to publish sites via Amazon Web Services, easily',
long_description=read('README.txt'),
author='Ville Korhonen',
author_email='ville@xd.fi',
url='http://ypcs.fi/code/awsite/',
packages=['awsite'],
# packages=find_packages(),
package_dir={'awsite': 'src/awsite',},
install_requires=[
"boto >= 2.5.2",
],
license='GPLv3',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Utilities',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
entry_points={
'console_scripts': [
'awsite = awsite.core:main',
],
},
)