-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (44 loc) · 1.25 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
from setuptools import setup, find_packages
from setuptools.command.install import install
import os
import sys
setup(
name='ryzom',
setup_requires='setupmeta',
versioning='dev',
description='Meteorish Python responsive frontend',
author='Thomas Mignot',
author_email='jamespic@gmail.com',
url='https://yourlabs.io/oss/ryzom',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
keywords='python frontend',
tests_require=[
'pytest',
],
extras_require=dict(
project=[
'autocomplete-light',
'django',
'channels',
'channels-redis',
'libsass',
'daphne',
'markdown',
],
),
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
python_requires='>=3',
)