-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (37 loc) · 1.06 KB
/
setup.py
File metadata and controls
45 lines (37 loc) · 1.06 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
import os
from setuptools import setup, find_packages
def read(fname):
"""Returns a file as a string"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "LAN AUTH",
version = "3.0",
author = "Matt Parker",
author_email = "mparker@lsucs.org.uk",
description = ("LSUCS LAN party authentication system"),
long_description = read("README.md"),
license = "MIT",
classifiers = [
"Development Status :: 3 - Alpha"
"Environment :: Web Environment",
"Framework :: Flask",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux"
"Topic :: System :: Networking :: Firewalls"
],
packages = find_packages(),
include_package_data = True,
zip_safe = False,
install_requires=[
'Flask>=0.10.1',
'Flask-RESTful>=0.3.5',
'SQLAlchemy>=1.0',
'PyMySQL>=0.5',
'requests>=2.9'
],
entry_points = {
'console_scripts': [
'lanauth=lanauth.__main__:cli',
]
}
)