-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 685 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (22 loc) · 685 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
if sys.argv[-1] == 'setup.py':
print "Please run 'python setup.py install' to install"
print " "
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='SaCoRG',
version='0.1.0',
description='Sampling and Counting of Random Graphs with Prescribed Degree Sequence',
long_description=readme,
author='Abdulkadir Celikkanat',
author_email='abdcelikkanat@gmail.com',
url='https://github.com/abdcelikkanat/sacorg',
license=license,
packages=find_packages(exclude=('tests', 'docs'))
)