Browse Source

Basic setup.py.

tags/v1.0^2
Ben Kurtovic 10 years ago
parent
commit
6a9598fe12
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      setup.py

+ 11
- 0
setup.py View File

@@ -0,0 +1,11 @@
from setuptools import setup, find_packages

setup(
name = "bitshift",
version = "0.1",
packages = find_packages(),
install_requires = ["Flask>=0.10.1", "pygments>=1.6"],
author = "Benjamin Attal, Ben Kurtovic, Severyn Kozak",
license = "MIT",
url = "https://github.com/earwig/bitshift"
)

Loading…
Cancel
Save