This commit is contained in:
Vyacheslav Anzhiganov 2016-04-02 03:07:08 +03:00
parent 1a244b52b9
commit 619490d206

View file

@ -4,5 +4,82 @@ from setuptools import setup
setup(
name='SWSCloudCore',
version='1.0.2',
version='2.1.2',
author='Vyacheslav Anzhiganov',
author_email='hello@anzhiganov.com',
packages=[
'SWSCloudCore',
'SWSCloudCore.controllers',
'SWSCloudCore.controllers.administrator',
'SWSCloudCore.controllers.billing',
'SWSCloudCore.controllers.common',
'SWSCloudCore.controllers.containers',
'SWSCloudCore.controllers.datacenters',
'SWSCloudCore.controllers.ips',
'SWSCloudCore.controllers.kb',
'SWSCloudCore.controllers.payments',
'SWSCloudCore.controllers.server_api',
'SWSCloudCore.controllers.servers',
'SWSCloudCore.controllers.settings',
'SWSCloudCore.controllers.tasks',
'SWSCloudCore.controllers.teams',
'SWSCloudCore.controllers.user_settings',
'SWSCloudCore.controllers.users',
'SWSCloudCore.views',
'SWSCloudCore.views.account',
'SWSCloudCore.views.administrator',
'SWSCloudCore.views.api',
'SWSCloudCore.views.containers',
'SWSCloudCore.views.documents',
'SWSCloudCore.views.kb',
'SWSCloudCore.views.payments',
'SWSCloudCore.views.server_api',
'SWSCloudCore.views.support',
'SWSCloudCore.views.tasks',
],
package_data={
'SWSCloudCore': [
'static/css/*.css',
'static/images/*.png',
'static/images/cloudns/*.png',
'static/images/control/*.png',
'static/images/payment/*.png',
'static/images/social/*.png',
'static/images/promo/*.png',
'static/js/*.js',
'static/js/foundation/*.js',
'static/js/vendor/*.js',
#
'templates/*.html',
'templates/account/*.html',
'templates/administrator/*.html',
'templates/administrator/payments/*.html',
'templates/administrator/plans/*.html',
'templates/administrator/settings/*.html',
'templates/administrator/users/*.html',
'templates/administrator/zones/*.html',
'templates/billing/*.html',
'templates/mail/default/*.html',
'templates/mail/default/*.css',
'templates/payment/robokassa/*.html',
'templates/records/*.html',
'templates/support/*.html',
'templates/zones/*.html',
]
},
scripts=[
'swscloud-db-init.py',
'swscloud-runserver.py',
],
install_requires=[
'Flask==0.10.1',
'flask-peewee==0.6.7',
'Jinja2==2.8',
'peewee==2.8.0',
'validators==0.10',
'psycopg2',
'configparser',
'uwsgi==2.0.12',
'flask_httpauth',
]
)