forked from UCCNetsoc/netsocadmin2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·55 lines (48 loc) · 1.28 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·55 lines (48 loc) · 1.28 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
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
requirements = [
# TODO: put package requirements here
'wheel',
]
# When running `pip install .` this ensures all requirements are installed in one go
try:
with open('requirements.txt') as f:
requirements.extend(f.readlines())
except FileNotFoundError:
# tox doesn't like this for some reason
pass
test_requirements = [
# TODO: put package test requirements here
]
setup(
name='netsocadmin',
version='1.0.0',
description='NetsocAdmin',
long_description='NetsocAdmin',
author='UCC Netsoc',
author_email='admin@netsoc.co',
url='https://github.com/UCCNetworkingSociety/netsocadmin2',
py_modules=['netsocadmin'],
# Example for a module that's a directory with __init__.py etc.
# You'd have this *instead* of py_modules.
packages=[
'netsocadmin',
],
package_dir={'netsocadmin': 'netsocadmin'},
scripts=[
# 'bin/netsocadmin',
],
install_requires=requirements,
dependency_links=[],
tests_require=test_requirements,
test_suite='tests',
include_package_data=True,
zip_safe=False,
keywords='netsocadmin',
classifiers=[
],
)