File: setup.py

package info (click to toggle)
epsilon 0.7.0-2~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 636 kB
  • sloc: python: 5,454; makefile: 15; sh: 5
file content (35 lines) | stat: -rw-r--r-- 991 bytes parent folder | download | duplicates (2)
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
from setuptools import setup, find_packages
import re

versionPattern = re.compile(r"""^__version__ = ['"](.*?)['"]$""", re.M)
with open("epsilon/_version.py", "rt") as f:
    version = versionPattern.search(f.read()).group(1)

setup(
    name="Epsilon",
    version=version,
    description="A set of utility modules used by Divmod projects",

    maintainer="divmod-dev",
    maintainer_email="divmod-dev@lists.launchpad.net",
    url="https://launchpad.net/divmod.org",

    install_requires=[
        "Twisted>=13.2.0",
        "PyOpenSSL>=0.13"
    ],
    packages=find_packages(),
    scripts=['bin/benchmark'],

    license="MIT",
    platforms=["any"],

    classifiers=[
        "Development Status :: 5 - Production/Stable",
        "Framework :: Twisted",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: MIT License",
        "Programming Language :: Python",
        "Topic :: Internet",
        "Topic :: Security",
        "Topic :: Utilities"])