-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·37 lines (33 loc) · 1.15 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("VERSION") as f:
version = f.read().strip()
setup(
name="drift-base",
version=version,
license='MIT',
author="Directive Games",
url='https://github.com/dgnorth/drift-base',
author_email='[email protected]',
description="Base Services for Drift.",
packages=find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]
),
include_package_data=True,
scripts=['scripts/static-data.py'],
classifiers=[
'Drift :: Tag :: Core',
'Drift :: Tag :: Product',
'Environment :: Web Environment',
'Framework :: Drift',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)