-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathsetup.py
50 lines (43 loc) · 1.55 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
47
48
49
50
import os
from setuptools import find_packages, setup
from openwisp_ipam import get_version
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
def get_install_requires():
"""
parse requirements.txt, ignore links, exclude comments
"""
requirements = []
for line in open('requirements.txt').readlines():
if line.startswith('#') or line == '' or line.startswith('git'):
continue
requirements.append(line)
return requirements
setup(
name='openwisp-ipam',
version=get_version(),
license='BSD-3-Clause',
author='OpenWISP',
author_email='[email protected]',
description='IP address space administration module of OpenWISP.',
long_description=README,
url='https://github.com/openwisp/openwisp-ipam',
download_url='https://github.com/openwisp/openwisp-ipam/releases',
platforms=['Platform Independent'],
keywords=['django', 'freeradius', 'networking', 'openwisp'],
packages=find_packages(exclude=['tests*', 'docs*']),
include_package_data=True,
zip_safe=False,
install_requires=get_install_requires(),
classifiers=[
'Development Status :: 5 - Production/Stable ',
'Environment :: Web Environment',
'Topic :: Internet :: WWW/HTTP',
'Topic :: System :: Networking',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Framework :: Django',
'Programming Language :: Python :: 3',
],
)