-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 1.24 KB
/
setup.py
File metadata and controls
40 lines (35 loc) · 1.24 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open('dev-requirements.txt') as f:
test_requirements = f.read().splitlines()
setup(
name='netuitive_statsd',
version='0.4.0',
description="Netuitive StatsD server",
long_description='Netuitive StatsD server\n',
author="Netuitive",
url='https://github.com/netuitive/netuitive-statsd',
install_requires=requirements,
license="Apache License 2.0",
zip_safe=False,
keywords='netuitive netuitive-statsd',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
test_suite='tests',
tests_require=test_requirements,
packages=['libs', 'libs.statsd', ''],
scripts=['netuitive-statsd']
)