-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (26 loc) · 1 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open("version", "r") as fh:
version = fh.read().strip()
setup(
name="mclf",
version=version,
author="Stefan Wewers, Julian Rüth",
author_email="[email protected]",
description="A Sage toolbox for computing with Models of Curves over Local Fields",
url="https://github.com/mclf/mclf",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(include=['mclf*']),
install_requires=['patchy'],
classifiers=(
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Mathematics",
"Operating System :: OS Independent")
)