-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 879 Bytes
/
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
#*****************************************************************************
#
# Copyright (C) 2009-2018 Christian Nassau <nassau@nullhomotopie.de>
#
# Distributed under the terms of the GNU General Public License (GPL),
# http://www.gnu.org/licenses/
#*****************************************************************************
from distutils.core import setup
from distutils.extension import Extension
#import shutil
#import os
#import subprocess
setup(
name = "yacop",
version = "2.0",
author = "Christian Nassau",
author_email = "nassau@nullhomotopie.de",
maintainer = "Christian Nassau",
maintainer_email = "nassau@nullhomotopie.de",
url = "http://nullhomotopie.de",
description = "Yacop - Steenrod algebra cohomology",
packages=["yacop","yacop.resolutions","yacop.modules","yacop.categories","yacop.utils","yacop.testing"],
)